+Mon Dec 7 13:38:06 1998 Owen Taylor <otaylor@redhat.com>
+
+ * gdk/gdkimage.c (gdk_image_new): Use IPC_RMID
+ _after_ doing XShmAttach. This should work everywhere,
+ and avoid the need for signal handlers or configure
+ checks.
+
+Thu Dec 3 19:58:45 1998 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkinputdialog.c: Use _add_with_viewport() for
+ scrolled window contents.
+
1998-12-07 Federico Mena Quintero <federico@nuclecu.unam.mx>
* gtk/gtkpaned.h (struct _GtkPaned): Removed the unused cursor
+Mon Dec 7 13:38:06 1998 Owen Taylor <otaylor@redhat.com>
+
+ * gdk/gdkimage.c (gdk_image_new): Use IPC_RMID
+ _after_ doing XShmAttach. This should work everywhere,
+ and avoid the need for signal handlers or configure
+ checks.
+
+Thu Dec 3 19:58:45 1998 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkinputdialog.c: Use _add_with_viewport() for
+ scrolled window contents.
+
1998-12-07 Federico Mena Quintero <federico@nuclecu.unam.mx>
* gtk/gtkpaned.h (struct _GtkPaned): Removed the unused cursor
+Mon Dec 7 13:38:06 1998 Owen Taylor <otaylor@redhat.com>
+
+ * gdk/gdkimage.c (gdk_image_new): Use IPC_RMID
+ _after_ doing XShmAttach. This should work everywhere,
+ and avoid the need for signal handlers or configure
+ checks.
+
+Thu Dec 3 19:58:45 1998 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkinputdialog.c: Use _add_with_viewport() for
+ scrolled window contents.
+
1998-12-07 Federico Mena Quintero <federico@nuclecu.unam.mx>
* gtk/gtkpaned.h (struct _GtkPaned): Removed the unused cursor
+Mon Dec 7 13:38:06 1998 Owen Taylor <otaylor@redhat.com>
+
+ * gdk/gdkimage.c (gdk_image_new): Use IPC_RMID
+ _after_ doing XShmAttach. This should work everywhere,
+ and avoid the need for signal handlers or configure
+ checks.
+
+Thu Dec 3 19:58:45 1998 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkinputdialog.c: Use _add_with_viewport() for
+ scrolled window contents.
+
1998-12-07 Federico Mena Quintero <federico@nuclecu.unam.mx>
* gtk/gtkpaned.h (struct _GtkPaned): Removed the unused cursor
+Mon Dec 7 13:38:06 1998 Owen Taylor <otaylor@redhat.com>
+
+ * gdk/gdkimage.c (gdk_image_new): Use IPC_RMID
+ _after_ doing XShmAttach. This should work everywhere,
+ and avoid the need for signal handlers or configure
+ checks.
+
+Thu Dec 3 19:58:45 1998 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkinputdialog.c: Use _add_with_viewport() for
+ scrolled window contents.
+
1998-12-07 Federico Mena Quintero <federico@nuclecu.unam.mx>
* gtk/gtkpaned.h (struct _GtkPaned): Removed the unused cursor
+Mon Dec 7 13:38:06 1998 Owen Taylor <otaylor@redhat.com>
+
+ * gdk/gdkimage.c (gdk_image_new): Use IPC_RMID
+ _after_ doing XShmAttach. This should work everywhere,
+ and avoid the need for signal handlers or configure
+ checks.
+
+Thu Dec 3 19:58:45 1998 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkinputdialog.c: Use _add_with_viewport() for
+ scrolled window contents.
+
1998-12-07 Federico Mena Quintero <federico@nuclecu.unam.mx>
* gtk/gtkpaned.h (struct _GtkPaned): Removed the unused cursor
+Mon Dec 7 13:38:06 1998 Owen Taylor <otaylor@redhat.com>
+
+ * gdk/gdkimage.c (gdk_image_new): Use IPC_RMID
+ _after_ doing XShmAttach. This should work everywhere,
+ and avoid the need for signal handlers or configure
+ checks.
+
+Thu Dec 3 19:58:45 1998 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkinputdialog.c: Use _add_with_viewport() for
+ scrolled window contents.
+
1998-12-07 Federico Mena Quintero <federico@nuclecu.unam.mx>
* gtk/gtkpaned.h (struct _GtkPaned): Removed the unused cursor
return NULL;
}
-#ifdef IPC_RMID_DEFERRED_RELEASE
- if (x_shm_info->shmaddr != (char*) -1)
- shmctl (x_shm_info->shmid, IPC_RMID, 0);
-#endif
-
gdk_error_code = 0;
gdk_error_warnings = 0;
gdk_use_xshm = False;
return NULL;
}
+
+ /* We mark the segment as destroyed so that when
+ * the last process detaches, it will be deleted.
+ * There is a small possibility of leaking if
+ * we die in XShmAttach. In theory, a signal handler
+ * could be set up.
+ */
+ shmctl (x_shm_info->shmid, IPC_RMID, 0);
if (image)
image_list = g_list_prepend (image_list, image);
x_shm_info = private->x_shm_info;
shmdt (x_shm_info->shmaddr);
- shmctl (x_shm_info->shmid, IPC_RMID, 0);
g_free (private->x_shm_info);
return NULL;
}
-#ifdef IPC_RMID_DEFERRED_RELEASE
- if (x_shm_info->shmaddr != (char*) -1)
- shmctl (x_shm_info->shmid, IPC_RMID, 0);
-#endif
-
gdk_error_code = 0;
gdk_error_warnings = 0;
gdk_use_xshm = False;
return NULL;
}
+
+ /* We mark the segment as destroyed so that when
+ * the last process detaches, it will be deleted.
+ * There is a small possibility of leaking if
+ * we die in XShmAttach. In theory, a signal handler
+ * could be set up.
+ */
+ shmctl (x_shm_info->shmid, IPC_RMID, 0);
if (image)
image_list = g_list_prepend (image_list, image);
x_shm_info = private->x_shm_info;
shmdt (x_shm_info->shmaddr);
- shmctl (x_shm_info->shmid, IPC_RMID, 0);
g_free (private->x_shm_info);
gtk_widget_destroy (inputd->axis_list);
}
inputd->axis_list = gtk_table_new (GDK_AXIS_LAST, 2, 0);
- gtk_container_add (GTK_CONTAINER (inputd->axis_listbox), inputd->axis_list);
+ gtk_scrolled_window_add_with_viewport (GTK_SCROLLED_WINDOW (inputd->axis_listbox),
+ inputd->axis_list);
gtk_widget_show (inputd->axis_list);
gtk_widget_realize (inputd->axis_list);
}
inputd->keys_list = gtk_table_new (info->num_keys, 3, FALSE);
- gtk_container_add (GTK_CONTAINER (inputd->keys_listbox), inputd->keys_list);
+ gtk_scrolled_window_add_with_viewport (GTK_SCROLLED_WINDOW (inputd->keys_listbox),
+ inputd->keys_list);
gtk_widget_show (inputd->keys_list);
gtk_widget_realize (inputd->keys_list);